home *** CD-ROM | disk | FTP | other *** search
- #! /bin/sh
-
- # Set the path.
- PATH=/sbin:/bin; export PATH
-
- # Remount the root fileystem read-write.
- echo "Remounting root file system read-write"
- mount -n -o remount,rw /
-
- # start the update(8) sync demon
- echo "Starting update"
- /sbin/update &
-
- # mount file systems in fstab (and create an entry for /)
- echo "Mounting filesystems:"
- mount -av
- mount -f /
-
- exit 0
-